From: Keir Fraser Date: Fri, 28 Dec 2007 15:26:27 +0000 (+0000) Subject: vt-d: Only setup rmrr identity mappings of the assigned devices X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14445^2~84 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=e6bf9545fdafebfce3559fc84aa05382eb9285b6;p=xen.git vt-d: Only setup rmrr identity mappings of the assigned devices Current implementation setups identity mappings for all the rmrrs whether the assigned device has rmrr or not. It's wasteful and not necessary, because only USB controllers and UMA integarated graphics devices have rmrr. This patch only setups rmrr identity mappings of the assigned devices. If the assigned devices don't have rmrr, needn't to setup rmrr identity mapping for guest. BTW, this patch fixes the VT-d bug (Fail to boot smp Linux guest with VT-d NIC assigned on IA32e platform). Signed-off-by: Weidong Han --- diff --git a/xen/arch/x86/hvm/vmx/vtd/intel-iommu.c b/xen/arch/x86/hvm/vmx/vtd/intel-iommu.c index 239239ed8e..29f8f195de 100644 --- a/xen/arch/x86/hvm/vmx/vtd/intel-iommu.c +++ b/xen/arch/x86/hvm/vmx/vtd/intel-iommu.c @@ -1866,14 +1866,17 @@ int assign_device(struct domain *d, u8 bus, u8 devfn) reassign_device_ownership(dom0, d, bus, devfn); - /* setup rmrr identify mapping just once per domain */ - for_each_rmrr_device(rmrr, pdev) - ret = iommu_prepare_rmrr_dev(d, rmrr, pdev); - if ( ret ) + /* Setup rmrr identify mapping */ + for_each_rmrr_device( rmrr, pdev ) + if ( pdev->bus == bus && pdev->devfn == devfn ) { - gdprintk(XENLOG_ERR VTDPREFIX, - "IOMMU: mapping reserved region failed\n"); - return ret; + ret = iommu_prepare_rmrr_dev(d, rmrr, pdev); + if ( ret ) + { + gdprintk(XENLOG_ERR VTDPREFIX, + "IOMMU: mapping reserved region failed\n"); + return ret; + } } end_for_each_rmrr_device(rmrr, pdev)